home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / emacs / emacs1857 / src_d2.zoo / source / dired.c < prev    next >
C/C++ Source or Header  |  1991-12-02  |  13KB  |  478 lines

  1. /* Lisp functions for making directory listings.
  2.    Copyright (C) 1985, 1986 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU Emacs.
  5.  
  6. GNU Emacs is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 1, or (at your option)
  9. any later version.
  10.  
  11. GNU Emacs is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU Emacs; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20.  
  21. #include <stdio.h>
  22. #include <sys/types.h>
  23. #include <sys/stat.h>
  24.  
  25. #include "config.h"
  26.  
  27. #ifdef SYSV_SYSTEM_DIR
  28.  
  29. #include <dirent.h>
  30. #define DIRENTRY struct dirent
  31. #define NAMLEN(p) strlen (p->d_name)
  32.  
  33. #else
  34.  
  35. #ifdef NONSYSTEM_DIR_LIBRARY
  36. #include "ndir.h"
  37. #else /* not NONSYSTEM_DIR_LIBRARY */
  38. #include <sys/dir.h>
  39. #endif /* not NONSYSTEM_DIR_LIBRARY */
  40.  
  41. #define DIRENTRY struct direct
  42. #define NAMLEN(p) p->d_namlen
  43.  
  44. extern DIR *opendir ();
  45. extern struct direct *readdir ();
  46.  
  47. #endif
  48.  
  49. #undef NULL
  50.  
  51. #include "lisp.h"
  52. #include "buffer.h"
  53. #include "commands.h"
  54.  
  55. #include "regex.h"
  56.  
  57. #define min(a, b) ((a) < (b) ? (a) : (b))
  58.  
  59. /* if system does not have symbolic links, it does not have lstat.
  60.    In that case, use ordinary stat instead.  */
  61.  
  62. #ifndef S_IFLNK
  63. #define lstat stat
  64. #endif
  65.  
  66. Lisp_Object Vcompletion_ignored_extensions;
  67.  
  68. Lisp_Object Qcompletion_ignore_case;
  69.  
  70. DEFUN ("directory-files", Fdirectory_files, Sdirectory_files, 1, 3, 0,
  71.   "Return a list of names of files in DIRECTORY.\n\
  72. If FULL is non-NIL, absolute pathnames of the files are returned.\n\
  73. If MATCH is non-NIL, only pathnames containing that regexp are returned.")
  74.   (dirname, full, match)
  75.      Lisp_Object dirname, full, match;
  76. {
  77.   DIR *d;
  78.   char slashfilename[MAXNAMLEN+2];
  79.   char *filename = slashfilename;
  80.   int length;
  81.   Lisp_Object list, name;
  82.  
  83.   /* In search.c */
  84.   extern struct re_pattern_buffer searchbuf;
  85.  
  86.   if (!NULL (match))
  87.     {
  88.       CHECK_STRING (match, 3);
  89.       /* Compile it now so we don't get an error after opendir */
  90. #ifdef VMS
  91.       compile_pattern (match, &searchbuf, (char *) downcase_table);
  92. #else
  93.       compile_pattern (match, &searchbuf, 0);
  94. #endif
  95.     }
  96.  
  97.   dirname = Fexpand_file_name (dirname, Qnil);
  98. /**
  99.  **  (sjk)++ typecast o quite gcc
  100.  **/
  101. #ifdef atarist
  102.   if (!(d = opendir ((char *)XSTRING (Fdirectory_file_name (dirname))->data)))
  103. #else
  104.   if (!(d = opendir (XSTRING (Fdirectory_file_name (dirname))->data)))
  105. #endif
  106.     report_file_error ("Opening directory", Fcons (dirname, Qnil));
  107.  
  108.   list = Qnil;
  109.   length = XSTRING (dirname)->size;
  110. #ifndef VMS
  111.   if (length == 0   ||  XSTRING (dirname)->data[length - 1] != '/')
  112.     *filename++ = '/';
  113. #endif /* VMS */
  114.  
  115.   /* Loop reading blocks */
  116.   while (1)
  117.     {
  118.       DIRENTRY *dp = readdir (d);
  119.       int len;
  120.  
  121.       if (!dp) break;
  122.       len = NAMLEN (dp);
  123.       if (dp->d_ino)
  124.     {
  125.       strncpy (filename, dp->d_name, len);
  126.       filename[len] = 0;
  127.       if (NULL (match) ||
  128.           (0 <= re_search (&searchbuf, filename, len, 0, len, 0)))
  129.         {
  130.           if (!NULL (full))
  131.         name = concat2 (dirname, build_string (slashfilename));
  132.           else
  133.         name = build_string (filename);
  134.           list = Fcons (name, list);
  135.         }
  136.     }
  137.     }
  138.   closedir (d);
  139.   return Fsort (Fnreverse (list), Qstring_lessp);
  140. }
  141.  
  142. Lisp_Object file_name_completion ();
  143.  
  144. DEFUN ("file-name-completion", Ffile_name_completion, Sfile_name_completion,
  145.   2, 2, 0,
  146.   "Complete file name FILE in directory DIR.\n\
  147. Returns the longest string common to all filenames in DIR\n\
  148. that start with FILE.\n\
  149. If there is only one and FILE matches it exactly, returns t.\n\
  150. Returns nil if DIR contains no name starting with FILE.")
  151.   (file, dirname)
  152.      Lisp_Object file, dirname;
  153. {
  154.   /* Don't waste time trying to complete a null string.
  155.      Besides, this case happens when user is being asked for
  156.      a directory name and has supplied one ending in a /.
  157.      We would not want to add anything in that case
  158.      even if there are some unique characters in that directory.  */
  159.   if (XTYPE (file) == Lisp_String && XSTRING (file)->size == 0)
  160.     return file;
  161.   return file_name_completion (file, dirname, 0, 0);
  162. }
  163.  
  164. DEFUN ("file-name-all-completions", Ffile_name_all_completions,
  165.   Sfile_name_all_completions, 2, 2, 0,
  166.   "Return a list of all completions of file name FILE in directory DIR.")
  167.   (file, dirname)
  168.      Lisp_Object file, dirname;
  169. {
  170.   return file_name_completion (file, dirname, 1, 0);
  171. }
  172.  
  173. #ifdef VMS
  174.  
  175. DEFUN ("file-name-all-versions", Ffile_name_all_versions,
  176.   Sfile_name_all_versions, 2, 2, 0,
  177.   "Return a list of all versions of file name FILE in directory DIR.")
  178.   (file, dirname)
  179.      Lisp_Object file, dirname;
  180. {
  181.   return file_name_completion (file, dirname, 1, 1);
  182. }
  183.  
  184. #endif /* VMS */
  185.  
  186. Lisp_Object
  187. file_name_completion (file, dirname, all_flag, ver_flag)
  188.      Lisp_Object file, dirname;
  189.      int all_flag, ver_flag;
  190. {
  191.   DIR *d;
  192.   DIRENTRY *dp;
  193.   int bestmatchsize, skip;
  194.   register int compare, matchsize;
  195.   unsigned char *p1, *p2;
  196.   int matchcount = 0;
  197.   Lisp_Object bestmatch, tem, elt, name;
  198.   struct stat st;
  199.   int directoryp;
  200.   int passcount;
  201.   int count = specpdl_ptr - specpdl;
  202. #ifdef VMS
  203.   extern DIRENTRY * readdirver ();
  204.  
  205.   DIRENTRY *((* readfunc) ());
  206.  
  207.   /* Filename completion on VMS ignores case, since VMS filesys does.  */
  208.   specbind (Qcompletion_ignore_case, Qt);
  209.  
  210.   readfunc = readdir;
  211.   if (ver_flag)
  212.     readfunc = readdirver;
  213.   file = Fupcase (file);
  214. #endif /* VMS */
  215.  
  216.   CHECK_STRING (file, 0);
  217.  
  218.   dirname = Fexpand_file_name (dirname, Qnil);
  219.   bestmatch = Qnil;
  220.  
  221.   /* passcount = 0, ignore files that end in an ignored extension.
  222.      If nothing found then try again with passcount = 1, don't ignore them.
  223.      If looking for all completions, start with passcount = 1,
  224.      so always take even the ignored ones.  */
  225.   for (passcount = !!all_flag; NULL (bestmatch) && passcount < 2; passcount++)
  226.     {
  227. /**
  228.  **  (sjk++) typecast to quite gcc
  229.  **/
  230. #ifdef atarist
  231.       if (!(d = opendir ((char *)XSTRING (Fdirectory_file_name
  232.                       (dirname))->data)))
  233. #else
  234.       if (!(d = opendir (XSTRING (Fdirectory_file_name (dirname))->data)))
  235. #endif
  236.     report_file_error ("Opening directory", Fcons (dirname, Qnil));
  237.  
  238.       /* Loop reading blocks */
  239.       /* (att3b compiler bug requires do a null comparison this way) */
  240.       while (1)
  241.     {
  242.       DIRENTRY *dp;
  243.       int len;
  244.  
  245. #ifdef VMS
  246.       dp = (*readfunc) (d);
  247. #else
  248.       dp = readdir (d);
  249. #endif
  250.       if (!dp) break;
  251.  
  252.       len = NAMLEN (dp);
  253.  
  254.       if (!NULL (Vquit_flag) && NULL (Vinhibit_quit))
  255.         goto quit;
  256.       if (!dp->d_ino
  257.           || len < XSTRING (file)->size
  258.           || 0 <= scmp (dp->d_name, XSTRING (file)->data,
  259.                 XSTRING (file)->size))
  260.         continue;
  261.  
  262.           if (file_name_completion_stat (dirname, dp, &st) < 0)
  263.             continue;
  264.  
  265.           directoryp = ((st.st_mode & S_IFMT) == S_IFDIR);
  266.       tem = Qnil;
  267.           if (!directoryp)
  268.             {
  269.           /* Compare extensions-to-be-ignored against end of this file name */
  270.           /* if name is not an exact match against specified string */
  271.           if (!passcount && len > XSTRING (file)->size)
  272.         /* and exit this for loop if a match is found */
  273.         for (tem = Vcompletion_ignored_extensions;
  274.              CONSP (tem); tem = XCONS (tem)->cdr)
  275.           {
  276.             elt = XCONS (tem)->car;
  277.             if (XTYPE (elt) != Lisp_String) continue;
  278.             skip = len - XSTRING (elt)->size;
  279.             if (skip < 0) continue;
  280.  
  281.             if (0 <= scmp (dp->d_name + skip,
  282.                    XSTRING (elt)->data,
  283.                    XSTRING (elt)->size))
  284.               continue;
  285.             break;
  286.           }
  287.         }
  288.  
  289.       /* Unless an ignored-extensions match was found,
  290.              process this name as a completion */
  291.       if (passcount || !CONSP (tem))
  292.         {
  293.           /* Update computation of how much all possible completions match */
  294.  
  295.           matchcount++;
  296.  
  297.           if (all_flag || NULL (bestmatch))
  298.         {
  299.           /* This is a possible completion */
  300.           if (directoryp)
  301.             {
  302.               /* This completion is a directory; make it end with '/' */
  303.               name = Ffile_